home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 November / SGI Freeware 1999 November - Disc 1.iso / dist / fw_readline.idb / usr / freeware / info / history.info.z / history.info (.txt)
GNU Info File  |  1999-04-16  |  30KB  |  595 lines

  1. This is Info file history.info, produced by Makeinfo version 1.67 from
  2. the input file /usr/homes/chet/src/bash/readline-src/doc/hist.texinfo.
  3. INFO-DIR-SECTION Libraries
  4. START-INFO-DIR-ENTRY
  5. * History: (history).       The GNU history library API
  6. END-INFO-DIR-ENTRY
  7.    This document describes the GNU History library, a programming tool
  8. that provides a consistent user interface for recalling lines of
  9. previously typed input.
  10.    Copyright (C) 1988-1999 Free Software Foundation, Inc.
  11.    Permission is granted to make and distribute verbatim copies of this
  12. manual provided the copyright notice and this permission notice pare
  13. preserved on all copies.
  14.    Permission is granted to copy and distribute modified versions of
  15. this manual under the conditions for verbatim copying, provided that
  16. the entire resulting derived work is distributed under the terms of a
  17. permission notice identical to this one.
  18.    Permission is granted to copy and distribute translations of this
  19. manual into another language, under the above conditions for modified
  20. versions, except that this permission notice may be stated in a
  21. translation approved by the Free Software Foundation.
  22. File: history.info,  Node: Top,  Next: Using History Interactively,  Up: (dir)
  23. GNU History Library
  24. *******************
  25.    This document describes the GNU History library, a programming tool
  26. that provides a consistent user interface for recalling lines of
  27. previously typed input.
  28. * Menu:
  29. * Using History Interactively::      GNU History User's Manual.
  30. * Programming with GNU History::  GNU History Programmer's Manual.
  31. * Concept Index::          Index of concepts described in this manual.
  32. * Function and Variable Index::      Index of externally visible functions
  33.                   and variables.
  34. File: history.info,  Node: Using History Interactively,  Next: Programming with GNU History,  Prev: Top,  Up: Top
  35. Using History Interactively
  36. ***************************
  37.    This chapter describes how to use the GNU History Library
  38. interactively, from a user's standpoint.  It should be considered a
  39. user's guide.  For information on using the GNU History Library in your
  40. own programs, *note Programming with GNU History::..
  41. * Menu:
  42. * History Interaction::        What it feels like using History as a user.
  43. File: history.info,  Node: History Interaction,  Up: Using History Interactively
  44. History Expansion
  45. =================
  46.    The History library provides a history expansion feature that is
  47. similar to the history expansion provided by `csh'.  This section
  48. describes the syntax used to manipulate the history information.
  49.    History expansions introduce words from the history list into the
  50. input stream, making it easy to repeat commands, insert the arguments
  51. to a previous command into the current input line, or fix errors in
  52. previous commands quickly.
  53.    History expansion takes place in two parts.  The first is to
  54. determine which line from the history list should be used during
  55. substitution.  The second is to select portions of that line for
  56. inclusion into the current one.  The line selected from the history is
  57. called the "event", and the portions of that line that are acted upon
  58. are called "words".  Various "modifiers" are available to manipulate
  59. the selected words.  The line is broken into words in the same fashion
  60. that Bash does, so that several words surrounded by quotes are
  61. considered one word.  History expansions are introduced by the
  62. appearance of the history expansion character, which is `!' by default.
  63. * Menu:
  64. * Event Designators::    How to specify which history line to use.
  65. * Word Designators::    Specifying which words are of interest.
  66. * Modifiers::        Modifying the results of substitution.
  67. File: history.info,  Node: Event Designators,  Next: Word Designators,  Up: History Interaction
  68. Event Designators
  69. -----------------
  70.    An event designator is a reference to a command line entry in the
  71. history list.
  72.      Start a history substitution, except when followed by a space, tab,
  73.      the end of the line, `=' or `('.
  74.      Refer to command line N.
  75. `!-N'
  76.      Refer to the command N lines back.
  77.      Refer to the previous command.  This is a synonym for `!-1'.
  78. `!STRING'
  79.      Refer to the most recent command starting with STRING.
  80. `!?STRING[?]'
  81.      Refer to the most recent command containing STRING.  The trailing
  82.      `?' may be omitted if the STRING is followed immediately by a
  83.      newline.
  84. `^STRING1^STRING2^'
  85.      Quick Substitution.  Repeat the last command, replacing STRING1
  86.      with STRING2.  Equivalent to `!!:s/STRING1/STRING2/'.
  87.      The entire command line typed so far.
  88. File: history.info,  Node: Word Designators,  Next: Modifiers,  Prev: Event Designators,  Up: History Interaction
  89. Word Designators
  90. ----------------
  91.    Word designators are used to select desired words from the event.  A
  92. `:' separates the event specification from the word designator.  It may
  93. be omitted if the word designator begins with a `^', `$', `*', `-', or
  94. `%'.  Words are numbered from the beginning of the line, with the first
  95. word being denoted by 0 (zero).  Words are inserted into the current
  96. line separated by single spaces.
  97. `0 (zero)'
  98.      The `0'th word.  For many applications, this is the command word.
  99.      The Nth word.
  100.      The first argument; that is, word 1.
  101.      The last argument.
  102.      The word matched by the most recent `?STRING?' search.
  103. `X-Y'
  104.      A range of words; `-Y' abbreviates `0-Y'.
  105.      All of the words, except the `0'th.  This is a synonym for `1-$'.
  106.      It is not an error to use `*' if there is just one word in the
  107.      event; the empty string is returned in that case.
  108.      Abbreviates `X-$'
  109.      Abbreviates `X-$' like `X*', but omits the last word.
  110.    If a word designator is supplied without an event specification, the
  111. previous command is used as the event.
  112. File: history.info,  Node: Modifiers,  Prev: Word Designators,  Up: History Interaction
  113. Modifiers
  114. ---------
  115.    After the optional word designator, you can add a sequence of one or
  116. more of the following modifiers, each preceded by a `:'.
  117.      Remove a trailing pathname component, leaving only the head.
  118.      Remove all leading  pathname  components, leaving the tail.
  119.      Remove a trailing suffix of the form `.SUFFIX', leaving the
  120.      basename.
  121.      Remove all but the trailing suffix.
  122.      Print the new command but do not execute it.
  123. `s/OLD/NEW/'
  124.      Substitute NEW for the first occurrence of OLD in the event line.
  125.      Any delimiter may be used in place of `/'.  The delimiter may be
  126.      quoted in OLD and NEW with a single backslash.  If `&' appears in
  127.      NEW, it is replaced by OLD.  A single backslash will quote the
  128.      `&'.  The final delimiter is optional if it is the last character
  129.      on the input line.
  130.      Repeat the previous substitution.
  131.      Cause changes to be applied over the entire event line.  Used in
  132.      conjunction with `s', as in `gs/OLD/NEW/', or with `&'.
  133. File: history.info,  Node: Programming with GNU History,  Next: Concept Index,  Prev: Using History Interactively,  Up: Top
  134. Programming with GNU History
  135. ****************************
  136.    This chapter describes how to interface programs that you write with
  137. the GNU History Library.  It should be considered a technical guide.
  138. For information on the interactive use of GNU History, *note Using
  139. History Interactively::..
  140. * Menu:
  141. * Introduction to History::    What is the GNU History library for?
  142. * History Storage::        How information is stored.
  143. * History Functions::        Functions that you can use.
  144. * History Variables::        Variables that control behaviour.
  145. * History Programming Example::    Example of using the GNU History Library.
  146. File: history.info,  Node: Introduction to History,  Next: History Storage,  Up: Programming with GNU History
  147. Introduction to History
  148. =======================
  149.    Many programs read input from the user a line at a time.  The GNU
  150. History library is able to keep track of those lines, associate
  151. arbitrary data with each line, and utilize information from previous
  152. lines in composing new ones.
  153.    The programmer using the History library has available functions for
  154. remembering lines on a history list, associating arbitrary data with a
  155. line, removing lines from the list, searching through the list for a
  156. line containing an arbitrary text string, and referencing any line in
  157. the list directly.  In addition, a history "expansion" function is
  158. available which provides for a consistent user interface across
  159. different programs.
  160.    The user using programs written with the History library has the
  161. benefit of a consistent user interface with a set of well-known
  162. commands for manipulating the text of previous lines and using that text
  163. in new commands.  The basic history manipulation commands are similar to
  164. the history substitution provided by `csh'.
  165.    If the programmer desires, he can use the Readline library, which
  166. includes some history manipulation by default, and has the added
  167. advantage of command line editing.
  168. File: history.info,  Node: History Storage,  Next: History Functions,  Prev: Introduction to History,  Up: Programming with GNU History
  169. History Storage
  170. ===============
  171.    The history list is an array of history entries.  A history entry is
  172. declared as follows:
  173.      typedef struct _hist_entry {
  174.        char *line;
  175.        char *data;
  176.      } HIST_ENTRY;
  177.    The history list itself might therefore be declared as
  178.      HIST_ENTRY **the_history_list;
  179.    The state of the History library is encapsulated into a single
  180. structure:
  181.      /* A structure used to pass the current state of the history stuff around. */
  182.      typedef struct _hist_state {
  183.        HIST_ENTRY **entries;         /* Pointer to the entries themselves. */
  184.        int offset;                   /* The location pointer within this array. */
  185.        int length;                   /* Number of elements within this array. */
  186.        int size;                     /* Number of slots allocated to this array. */
  187.        int flags;
  188.      } HISTORY_STATE;
  189.    If the flags member includes `HS_STIFLED', the history has been
  190. stifled.
  191. File: history.info,  Node: History Functions,  Next: History Variables,  Prev: History Storage,  Up: Programming with GNU History
  192. History Functions
  193. =================
  194.    This section describes the calling sequence for the various functions
  195. present in GNU History.
  196. * Menu:
  197. * Initializing History and State Management::    Functions to call when you
  198.                         want to use history in a
  199.                         program.
  200. * History List Management::        Functions used to manage the list
  201.                     of history entries.
  202. * Information About the History List::    Functions returning information about
  203.                     the history list.
  204. * Moving Around the History List::    Functions used to change the position
  205.                     in the history list.
  206. * Searching the History List::        Functions to search the history list
  207.                     for entries containing a string.
  208. * Managing the History File::        Functions that read and write a file
  209.                     containing the history list.
  210. * History Expansion::            Functions to perform csh-like history
  211.                     expansion.
  212. File: history.info,  Node: Initializing History and State Management,  Next: History List Management,  Up: History Functions
  213. Initializing History and State Management
  214. -----------------------------------------
  215.    This section describes functions used to initialize and manage the
  216. state of the History library when you want to use the history functions
  217. in your program.
  218.  - Function: void using_history ()
  219.      Begin a session in which the history functions might be used.  This
  220.      initializes the interactive variables.
  221.  - Function: HISTORY_STATE * history_get_history_state ()
  222.      Return a structure describing the current state of the input
  223.      history.
  224.  - Function: void history_set_history_state (HISTORY_STATE *state)
  225.      Set the state of the history list according to STATE.
  226. File: history.info,  Node: History List Management,  Next: Information About the History List,  Prev: Initializing History and State Management,  Up: History Functions
  227. History List Management
  228. -----------------------
  229.    These functions manage individual entries on the history list, or set
  230. parameters managing the list itself.
  231.  - Function: void add_history (char *string)
  232.      Place STRING at the end of the history list.  The associated data
  233.      field (if any) is set to `NULL'.
  234.  - Function: HIST_ENTRY * remove_history (int which)
  235.      Remove history entry at offset WHICH from the history.  The
  236.      removed element is returned so you can free the line, data, and
  237.      containing structure.
  238.  - Function: HIST_ENTRY * replace_history_entry (int which, char *line,
  239.           char *data)
  240.      Make the history entry at offset WHICH have LINE and DATA.  This
  241.      returns the old entry so you can dispose of the data.  In the case
  242.      of an invalid WHICH, a `NULL' pointer is returned.
  243.  - Function: void clear_history ()
  244.      Clear the history list by deleting all the entries.
  245.  - Function: void stifle_history (int max)
  246.      Stifle the history list, remembering only the last MAX entries.
  247.  - Function: int unstifle_history ()
  248.      Stop stifling the history.  This returns the previous amount the
  249.      history was stifled.  The value is positive if the history was
  250.      stifled, negative if it wasn't.
  251.  - Function: int history_is_stifled ()
  252.      Returns non-zero if the history is stifled, zero if it is not.
  253. File: history.info,  Node: Information About the History List,  Next: Moving Around the History List,  Prev: History List Management,  Up: History Functions
  254. Information About the History List
  255. ----------------------------------
  256.    These functions return information about the entire history list or
  257. individual list entries.
  258.  - Function: HIST_ENTRY ** history_list ()
  259.      Return a `NULL' terminated array of `HIST_ENTRY' which is the
  260.      current input history.  Element 0 of this list is the beginning of
  261.      time.  If there is no history, return `NULL'.
  262.  - Function: int where_history ()
  263.      Returns the offset of the current history element.
  264.  - Function: HIST_ENTRY * current_history ()
  265.      Return the history entry at the current position, as determined by
  266.      `where_history ()'.  If there is no entry there, return a `NULL'
  267.      pointer.
  268.  - Function: HIST_ENTRY * history_get (int offset)
  269.      Return the history entry at position OFFSET, starting from
  270.      `history_base'.  If there is no entry there, or if OFFSET is
  271.      greater than the history length, return a `NULL' pointer.
  272.  - Function: int history_total_bytes ()
  273.      Return the number of bytes that the primary history entries are
  274.      using.  This function returns the sum of the lengths of all the
  275.      lines in the history.
  276. File: history.info,  Node: Moving Around the History List,  Next: Searching the History List,  Prev: Information About the History List,  Up: History Functions
  277. Moving Around the History List
  278. ------------------------------
  279.    These functions allow the current index into the history list to be
  280. set or changed.
  281.  - Function: int history_set_pos (int pos)
  282.      Set the position in the history list to POS, an absolute index
  283.      into the list.
  284.  - Function: HIST_ENTRY * previous_history ()
  285.      Back up the current history offset to the previous history entry,
  286.      and return a pointer to that entry.  If there is no previous
  287.      entry, return a `NULL' pointer.
  288.  - Function: HIST_ENTRY * next_history ()
  289.      Move the current history offset forward to the next history entry,
  290.      and return the a pointer to that entry.  If there is no next
  291.      entry, return a `NULL' pointer.
  292. File: history.info,  Node: Searching the History List,  Next: Managing the History File,  Prev: Moving Around the History List,  Up: History Functions
  293. Searching the History List
  294. --------------------------
  295.    These functions allow searching of the history list for entries
  296. containing a specific string.  Searching may be performed both forward
  297. and backward from the current history position.  The search may be
  298. "anchored", meaning that the string must match at the beginning of the
  299. history entry.
  300.  - Function: int history_search (char *string, int direction)
  301.      Search the history for STRING, starting at the current history
  302.      offset.  If DIRECTION < 0, then the search is through previous
  303.      entries, else through subsequent.  If STRING is found, then the
  304.      current history index is set to that history entry, and the value
  305.      returned is the offset in the line of the entry where STRING was
  306.      found.  Otherwise, nothing is changed, and a -1 is returned.
  307.  - Function: int history_search_prefix (char *string, int direction)
  308.      Search the history for STRING, starting at the current history
  309.      offset.  The search is anchored: matching lines must begin with
  310.      STRING.  If DIRECTION < 0, then the search is through previous
  311.      entries, else through subsequent.  If STRING is found, then the
  312.      current history index is set to that entry, and the return value
  313.      is 0.  Otherwise, nothing is changed, and a -1 is returned.
  314.  - Function: int history_search_pos (char *string, int direction, int
  315.           pos)
  316.      Search for STRING in the history list, starting at POS, an
  317.      absolute index into the list.  If DIRECTION is negative, the search
  318.      proceeds backward from POS, otherwise forward.  Returns the
  319.      absolute index of the history element where STRING was found, or
  320.      -1 otherwise.
  321. File: history.info,  Node: Managing the History File,  Next: History Expansion,  Prev: Searching the History List,  Up: History Functions
  322. Managing the History File
  323. -------------------------
  324.    The History library can read the history from and write it to a file.
  325. This section documents the functions for managing a history file.
  326.  - Function: int read_history (char *filename)
  327.      Add the contents of FILENAME to the history list, a line at a
  328.      time.  If FILENAME is `NULL', then read from `~/.history'.
  329.      Returns 0 if successful, or errno if not.
  330.  - Function: int read_history_range (char *filename, int from, int to)
  331.      Read a range of lines from FILENAME, adding them to the history
  332.      list.  Start reading at line FROM and end at TO.  If FROM is zero,
  333.      start at the beginning.  If TO is less than FROM, then read until
  334.      the end of the file.  If FILENAME is `NULL', then read from
  335.      `~/.history'.  Returns 0 if successful, or `errno' if not.
  336.  - Function: int write_history (char *filename)
  337.      Write the current history to FILENAME, overwriting FILENAME if
  338.      necessary.  If FILENAME is `NULL', then write the history list to
  339.      `~/.history'.  Values returned are as in `read_history ()'.
  340.  - Function: int append_history (int nelements, char *filename)
  341.      Append the last NELEMENTS of the history list to FILENAME.
  342.  - Function: int history_truncate_file (char *filename, int nlines)
  343.      Truncate the history file FILENAME, leaving only the last NLINES
  344.      lines.
  345. File: history.info,  Node: History Expansion,  Prev: Managing the History File,  Up: History Functions
  346. History Expansion
  347. -----------------
  348.    These functions implement `csh'-like history expansion.
  349.  - Function: int history_expand (char *string, char **output)
  350.      Expand STRING, placing the result into OUTPUT, a pointer to a
  351.      string (*note History Interaction::.).  Returns:
  352.     `0'
  353.           If no expansions took place (or, if the only change in the
  354.           text was the de-slashifying of the history expansion
  355.           character);
  356.     `1'
  357.           if expansions did take place;
  358.     `-1'
  359.           if there was an error in expansion;
  360.     `2'
  361.           if the returned line should only be displayed, but not
  362.           executed, as with the `:p' modifier (*note Modifiers::.).
  363.      If an error ocurred in expansion, then OUTPUT contains a
  364.      descriptive error message.
  365.  - Function: char * history_arg_extract (int first, int last, char
  366.           *string)
  367.      Extract a string segment consisting of the FIRST through LAST
  368.      arguments present in STRING.  Arguments are broken up as in Bash.
  369.  - Function: char * get_history_event (char *string, int *cindex, int
  370.           qchar)
  371.      Returns the text of the history event beginning at STRING +
  372.      *CINDEX.  *CINDEX is modified to point to after the event
  373.      specifier.  At function entry, CINDEX points to the index into
  374.      STRING where the history event specification begins.  QCHAR is a
  375.      character that is allowed to end the event specification in
  376.      addition to the "normal" terminating characters.
  377.  - Function: char ** history_tokenize (char *string)
  378.      Return an array of tokens parsed out of STRING, much as the shell
  379.      might.  The tokens are split on white space and on the characters
  380.      `()<>;&|$', and shell quoting conventions are obeyed.
  381. File: history.info,  Node: History Variables,  Next: History Programming Example,  Prev: History Functions,  Up: Programming with GNU History
  382. History Variables
  383. =================
  384.    This section describes the externally visible variables exported by
  385. the GNU History Library.
  386.  - Variable: int history_base
  387.      The logical offset of the first entry in the history list.
  388.  - Variable: int history_length
  389.      The number of entries currently stored in the history list.
  390.  - Variable: int max_input_history
  391.      The maximum number of history entries.  This must be changed using
  392.      `stifle_history ()'.
  393.  - Variable: char history_expansion_char
  394.      The character that starts a history event.  The default is `!'.
  395.  - Variable: char history_subst_char
  396.      The character that invokes word substitution if found at the start
  397.      of a line.  The default is `^'.
  398.  - Variable: char history_comment_char
  399.      During tokenization, if this character is seen as the first
  400.      character of a word, then it and all subsequent characters up to a
  401.      newline are ignored, suppressing history expansion for the
  402.      remainder of the line.  This is disabled by default.
  403.  - Variable: char * history_no_expand_chars
  404.      The list of characters which inhibit history expansion if found
  405.      immediately following HISTORY_EXPANSION_CHAR.  The default is
  406.      whitespace and `='.
  407.  - Variable: char * history_search_delimiter_chars
  408.      The list of additional characters which can delimit a history
  409.      search string, in addition to whitespace, `:' and `?' in the case
  410.      of a substring search.  The default is empty.
  411.  - Variable: int history_quotes_inhibit_expansion
  412.      If non-zero, single-quoted words are not scanned for the history
  413.      expansion character.  The default value is 0.
  414.  - Variable: Function * history_inhibit_expansion_function
  415.      This should be set to the address of a function that takes two
  416.      arguments: a `char *' (STRING) and an integer index into that
  417.      string (I).  It should return a non-zero value if the history
  418.      expansion starting at STRING[I] should not be performed; zero if
  419.      the expansion should be done.  It is intended for use by
  420.      applications like Bash that use the history expansion character
  421.      for additional purposes.  By default, this variable is set to NULL.
  422. File: history.info,  Node: History Programming Example,  Prev: History Variables,  Up: Programming with GNU History
  423. History Programming Example
  424. ===========================
  425.    The following program demonstrates simple use of the GNU History
  426. Library.
  427.      main ()
  428.      {
  429.        char line[1024], *t;
  430.        int len, done = 0;
  431.      
  432.        line[0] = 0;
  433.      
  434.        using_history ();
  435.        while (!done)
  436.          {
  437.            printf ("history$ ");
  438.            fflush (stdout);
  439.            t = fgets (line, sizeof (line) - 1, stdin);
  440.            if (t && *t)
  441.              {
  442.                len = strlen (t);
  443.                if (t[len - 1] == '\n')
  444.                  t[len - 1] = '\0';
  445.              }
  446.      
  447.            if (!t)
  448.              strcpy (line, "quit");
  449.      
  450.            if (line[0])
  451.              {
  452.                char *expansion;
  453.                int result;
  454.      
  455.                result = history_expand (line, &expansion);
  456.                if (result)
  457.                  fprintf (stderr, "%s\n", expansion);
  458.      
  459.                if (result < 0 || result == 2)
  460.                  {
  461.                    free (expansion);
  462.                    continue;
  463.                  }
  464.      
  465.                add_history (expansion);
  466.                strncpy (line, expansion, sizeof (line) - 1);
  467.                free (expansion);
  468.              }
  469.      
  470.            if (strcmp (line, "quit") == 0)
  471.              done = 1;
  472.            else if (strcmp (line, "save") == 0)
  473.              write_history ("history_file");
  474.            else if (strcmp (line, "read") == 0)
  475.              read_history ("history_file");
  476.            else if (strcmp (line, "list") == 0)
  477.              {
  478.                register HIST_ENTRY **the_list;
  479.                register int i;
  480.      
  481.                the_list = history_list ();
  482.                if (the_list)
  483.                  for (i = 0; the_list[i]; i++)
  484.                    printf ("%d: %s\n", i + history_base, the_list[i]->line);
  485.              }
  486.            else if (strncmp (line, "delete", 6) == 0)
  487.              {
  488.                int which;
  489.                if ((sscanf (line + 6, "%d", &which)) == 1)
  490.                  {
  491.                    HIST_ENTRY *entry = remove_history (which);
  492.                    if (!entry)
  493.                      fprintf (stderr, "No such entry %d\n", which);
  494.                    else
  495.                      {
  496.                        free (entry->line);
  497.                        free (entry);
  498.                      }
  499.                  }
  500.                else
  501.                  {
  502.                    fprintf (stderr, "non-numeric arg given to `delete'\n");
  503.                  }
  504.              }
  505.          }
  506.      }
  507. File: history.info,  Node: Concept Index,  Next: Function and Variable Index,  Prev: Programming with GNU History,  Up: Top
  508. Concept Index
  509. *************
  510. * Menu:
  511. * anchored search:                       Searching the History List.
  512. * event designators:                     Event Designators.
  513. * history events:                        Event Designators.
  514. * history expansion:                     History Interaction.
  515. * History Searching:                     Searching the History List.
  516. File: history.info,  Node: Function and Variable Index,  Prev: Concept Index,  Up: Top
  517. Function and Variable Index
  518. ***************************
  519. * Menu:
  520. * add_history:                           History List Management.
  521. * append_history:                        Managing the History File.
  522. * clear_history:                         History List Management.
  523. * current_history:                       Information About the History List.
  524. * get_history_event:                     History Expansion.
  525. * history_arg_extract:                   History Expansion.
  526. * history_base:                          History Variables.
  527. * history_comment_char:                  History Variables.
  528. * history_expand:                        History Expansion.
  529. * history_expansion_char:                History Variables.
  530. * history_get:                           Information About the History List.
  531. * history_get_history_state:             Initializing History and State Management.
  532. * history_inhibit_expansion_function:    History Variables.
  533. * history_is_stifled:                    History List Management.
  534. * history_length:                        History Variables.
  535. * history_list:                          Information About the History List.
  536. * history_no_expand_chars:               History Variables.
  537. * history_quotes_inhibit_expansion:      History Variables.
  538. * history_search:                        Searching the History List.
  539. * history_search_delimiter_chars:        History Variables.
  540. * history_search_pos:                    Searching the History List.
  541. * history_search_prefix:                 Searching the History List.
  542. * history_set_history_state:             Initializing History and State Management.
  543. * history_set_pos:                       Moving Around the History List.
  544. * history_subst_char:                    History Variables.
  545. * history_tokenize:                      History Expansion.
  546. * history_total_bytes:                   Information About the History List.
  547. * history_truncate_file:                 Managing the History File.
  548. * max_input_history:                     History Variables.
  549. * next_history:                          Moving Around the History List.
  550. * previous_history:                      Moving Around the History List.
  551. * read_history:                          Managing the History File.
  552. * read_history_range:                    Managing the History File.
  553. * remove_history:                        History List Management.
  554. * replace_history_entry:                 History List Management.
  555. * stifle_history:                        History List Management.
  556. * unstifle_history:                      History List Management.
  557. * using_history:                         Initializing History and State Management.
  558. * where_history:                         Information About the History List.
  559. * write_history:                         Managing the History File.
  560. Tag Table:
  561. Node: Top
  562. Node: Using History Interactively
  563. Node: History Interaction
  564. Node: Event Designators
  565. Node: Word Designators
  566. Node: Modifiers
  567. Node: Programming with GNU History
  568. Node: Introduction to History
  569. Node: History Storage
  570. Node: History Functions
  571. 10123
  572. Node: Initializing History and State Management
  573. 11094
  574. Node: History List Management
  575. 11886
  576. Node: Information About the History List
  577. 13407
  578. Node: Moving Around the History List
  579. 14713
  580. Node: Searching the History List
  581. 15598
  582. Node: Managing the History File
  583. 17430
  584. Node: History Expansion
  585. 18936
  586. Node: History Variables
  587. 20780
  588. Node: History Programming Example
  589. 23098
  590. Node: Concept Index
  591. 25702
  592. Node: Function and Variable Index
  593. 26188
  594. End Tag Table
  595.